KtorOneToManyKeyValueRepo

class KtorOneToManyKeyValueRepo<Key, Value>(baseUrl: String, baseSubpart: String, unifiedRequester: UnifiedRequester, keySerializer: KSerializer<Key>, valueSerializer: KSerializer<Value>) : OneToManyKeyValueRepo<Key, Value> , ReadOneToManyKeyValueRepo<Key, Value> , WriteOneToManyKeyValueRepo<Key, Value>

Constructors

Link copied to clipboard
fun <Key, Value> KtorOneToManyKeyValueRepo(baseUrl: String, baseSubpart: String, client: <ERROR CLASS>, keySerializer: KSerializer<Key>, valueSerializer: KSerializer<Value>, serialFormat: StandardKtorSerialFormat = standardKtorSerialFormat)

Functions

Link copied to clipboard
open suspend override fun add(toAdd: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun clear(k: Key)
Link copied to clipboard
open suspend override fun clearWithValue(v: Value)
Link copied to clipboard
open suspend override fun contains(k: Key): Boolean
open suspend override fun contains(k: Key, v: Value): Boolean
Link copied to clipboard
open suspend override fun count(): Long
open suspend override fun count(k: Key): Long
Link copied to clipboard
open suspend override fun get(k: Key, pagination: Pagination, reversed: Boolean): PaginationResult<Value>
Link copied to clipboard
open suspend override fun getAll(reverseLists: Boolean): Map<Key, List<Value>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend override fun getAll(k: Key, reversed: Boolean): List<Value>
Link copied to clipboard
open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
open suspend override fun keys(v: Value, pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Link copied to clipboard
open suspend override fun remove(toRemove: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun set(toSet: Map<Key, List<Value>>)

Properties

Link copied to clipboard
open override val onDataCleared: Flow<Key>
Link copied to clipboard
open override val onNewValue: Flow<Pair<Key, Value>>
Link copied to clipboard
open override val onValueRemoved: Flow<Pair<Key, Value>>